How to do it:

note you can't have hard returns (just let it wrap) or "'s where I have the jokes.

<center>
<SCRIPT LANGUAGE="javascript">

var tickertapeform

speed=25

len=25

space="                                                                                                                                                                                                                                                 "

tid = 0;

message=""

c= -len;

function move() 
   {
  
     cend=Math.min(c+len,message.length)

     if (c <0)

        cstart=0

          else

              cstart=c

                if (c < 0)

                    f.scroll.value=space.substring(0,-c) +
message.substring(cstart,cend) else
f.scroll.value=message.substring(cstart,cend) c = c +1; if (c == message.length ) c = -len; tid=window.setTimeout("move()",speed); } function start(x) { f=x tid=window.setTimeout("move()",speed); } function cleartid() { window.clearTimeout(tid); } // for some reason on some pages this crashes netscape function ticker(m,l,s) { message=m len=l speed=s document.write('<FORM name=tickertapeform><input name=scroll size=') document.write(len) document.write(' value="">') start(document.tickertapeform); } // for some reason on some pages this crashes netscape function ticker(m) { message=m len=75 speed=25 document.write('<FORM name=tickertapeform><input name=scroll size=80>'); start(document.tickertapeform); } </SCRIPT> <SCRIPT LANGUAGE="javascript"> ticker("Anything that you want to say") </ScRIPT>


If you have a Java Script enabled browser try checking the time:

OFF ON


Heres How:

<!----clock Java script----->

<SCRIPT language="JavaScript">
<!-------hide from old browsers--
var enabled = 0;
function TOfunc()
{
TO = window.setTimeout( "TOfunc()", 1000 );
var today = new Date();
document.forms[0].elements[0].value = today.toString();
}
//-------end hide--->

</SCRIPT>

<!---end clock script--->
<CENTER>
If you have a Java Script enabled browser try checking the time:  
<CENTER>
<INPUT type="text" name="disp" value="" size=25 onFocus="this.blur()" >
<BR>
<INPUT type="radio" name="rad" value="OFF"  checked onClick="
    if( enabled )
{
	clearTimeout( TO );
        enabled = 0;
}">OFF


<INPUT type="radio" name="rad" value="ON" onClick="
if( !enabled )
{
TO = setTimeout( 'TOfunc()', 1000 );
        enabled = 1;
}">ON

<BR>

</CENTER>

</FORM>

<P>

<HR>

<FORM action="http://www.lycos.com/cgi-bin/pursuit" method=GET>


<INPUT type="button" onclick="document.bgColor='#0000FF'" name="colr" value=" BLUE ">
<INPUT type="button" onclick="document.bgColor='#FF0000'" name="colr" value=" RED ">
<INPUT type="button" onclick="document.bgColor='#00FF00'" name="colr" value=" GREEN ">
<INPUT type="button" onclick="document.bgColor='#FFFFFF'" name="colr" value=" WHITE ">
<INPUT type="button" onclick="document.bgColor='#000000'" name="colr" value=" BLACK ">
<INPUT type="button" onclick="document.bgColor='fff2ff'" name="colr" value=" Junior">

How to get lots of colors when you get into your page:

<SCRIPT language="JavaScript">
<!--
var hexChars = "0123456789ABCDEF";
function Dec2Hex (Dec) 
{
var a = Dec % 16;
var b = (Dec - a)/16;
hex = "" + hexChars.charAt(b) + hexChars.charAt(a);
return hex;
}

function bgChanger (begin, end, steps) 
{
steps = steps -1 ;
redA     = begin.charAt(0) + begin.charAt(1);
red_valA = parseInt(redA,'16');
redB     = end.charAt(0) + end.charAt(1);
red_valB = parseInt(redB,'16');
red_int  = ((red_valB - red_valA) / steps) * -1;
grnA     = begin.charAt(2) + begin.charAt(3);
grn_valA = parseInt(grnA,'16');	
grnB     = end.charAt(2) + end.charAt(3);
grn_valB = parseInt(grnB,'16');
grn_int  = ((grn_valB - grn_valA) / steps) * -1;
bluA     = begin.charAt(4) + begin.charAt(5);
blu_valA = parseInt(bluA,'16');
bluB     = end.charAt(4) + end.charAt(5);
blu_valB = parseInt(bluB,'16');
blu_int  = ((blu_valB - blu_valA) / steps) * -1;
step = 2;
  red = red_valA;
  grn = grn_valA;
  blu = blu_valA;
document.bgColor = begin;
while ( steps >= step ) 
{
    red -= red_int;
red_round = Math.round(red);
red_hex = Dec2Hex(red);
grn -= grn_int;
grn_round = Math.round(grn);
grn_hex = Dec2Hex(grn);
blu -= blu_int;
    blu_round = Math.round(blu);
blu_hex = Dec2Hex(blu);
document.bgColor = red_hex + grn_hex + blu_hex;
step++;
  }
document.bgColor = end;
}
bgChanger("ff0000","0000ff",30);
bgChanger("0000ff","00ff00",30);
bgChanger("00ff00","ff0000",30);
bgChanger("ff0000","000000",30);	
// -->
</SCRIPT>

How to give someone a little cool screen saying whatever you want:

<!-- Script Copyright � JemWeb 1997.  All rights reserved. -->
<!--

function JemWebCONFIRM()
{
if (!confirm
("Whatever You want to say"))
history.go(-1);return " "}

document.writeln(JemWebCONFIRM())

<!-- END -->
</SCRIPT>